home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / pcboard / gamble11.zip / GAMBLE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-04-26  |  1KB  |  89 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     :LABEL001
  24.     DispFile PPEPath() + "gametype", 0
  25.     InputStr "Which game would you like to play", STRING001, 14, 1, "1234QqGg", 8
  26.     If (STRING001 == "1") Then
  27.         Call PPEPath() + "luck1.ppe"
  28.         Goto LABEL001
  29.     Endif
  30.     If (STRING001 == "2") Then
  31.         Call PPEPath() + "luck2.ppe"
  32.         Goto LABEL001
  33.     Endif
  34.     If (STRING001 == "3") Then
  35.         Call PPEPath() + "bjack.ppe"
  36.         Goto LABEL001
  37.     Endif
  38.     If (STRING001 == "4") Then
  39.         Call PPEPath() + "scrack.ppe"
  40.         Goto LABEL001
  41.     Endif
  42.     If (STRING001 == "Q") End
  43.     If (STRING001 == "G") Goodbye
  44.     If (STRING001 == "") Goto LABEL001
  45.  
  46. ;------------------------------------------------------------------------------
  47. ;
  48. ; Usage report (before postprocessing)
  49. ;
  50. ; ■ Statements used :
  51. ;
  52. ;    1       End
  53. ;    9       Goto 
  54. ;    7       If 
  55. ;    1       DispFile 
  56. ;    1       InputStr 
  57. ;    4       Call 
  58. ;    1       Goodbye
  59. ;
  60. ;
  61. ; ■ Functions used :
  62. ;
  63. ;    5       +
  64. ;    7       ==
  65. ;    4       !
  66. ;    5       PPEPath()
  67. ;
  68. ;------------------------------------------------------------------------------
  69. ;
  70. ; Analysis flags : C
  71. ;
  72. ; C - Call child PPE ■ 3
  73. ;     This is usually normal, but may be a tricky way to launch some
  74. ;     sysop-only commands.
  75. ;     ■ Search for : CALL
  76. ;
  77. ;------------------------------------------------------------------------------
  78. ;
  79. ; Postprocessing report
  80. ;
  81. ;    0       For/Next
  82. ;    0       While/EndWhile
  83. ;    4       If/Then or If/Then/Else
  84. ;    0       Select Case
  85. ;
  86. ;------------------------------------------------------------------------------
  87. ;                 AEGiS Corp - Break the routines, code against the machines!
  88. ;------------------------------------------------------------------------------
  89.